.catalog-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

.catalog-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Manrope";
    color: #292929;
    text-align: center;
}

.catalog-product__link {
    color: currentColor;
    text-decoration: none;
}

.catalog-product__img {
    aspect-ratio: 1;
    margin-bottom: 15px;
    overflow: hidden;
}

.catalog-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .4s ease;
}

.catalog-product__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.catalog-product__price {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.catalog-product__btn {
    width: 100%;
    max-width: 190px;
    height: 50px;
    color: #E69E5F;
    font-size: 16px;
    font-weight: 500;
    background: #FFFFFF;
    border: 2px solid #E69E5F;
    border-radius: 5px;
    cursor: pointer;
}

.catalog-product:has(.catalog-product__btn:hover) .catalog-product__img img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .catalog-products {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {
    .catalog-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 10px;
    }

    .catalog-product__img {
        margin-bottom: 12px;
    }

    .catalog-product__title {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .catalog-product__price {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .catalog-product__btn {
        max-width: 160px;
        height: 40px;
        font-size: 13px;
        border: 1px solid #E69E5F;
    }
}